博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
完成个人中心—导航标签2
阅读量:6229 次
发布时间:2019-06-21

本文共 2804 字,大约阅读时间需要 9 分钟。

    1. 个人中心—视图函数带标签页面参数tag
      @app.route('/usercenter/<user_id>/<tag>')
      def usercenter(user_id, tag):
         if tag == ‘1':
             return render_template('usercenter1.html', **context)
    2. 个人中心—导航标签链接增加tag参数
      <li role=“presentation”><a href=“{
      { url_for(‘usercenter’,user_id = user.id,tag = ‘1’) }}">全部问答</a></li>
    3. 个人中心—有链接到个人中心页面的url增加tag参数
      u <a href="{
      { url_for('usercenter',user_id = session.get('userid'), tag=1) }}">{
      { session.get('user') }}</a>
    4. @app.route('/usercenter/
      /
      ')def usercenter(user_id,tag): user = User.query.filter(User.id == user_id).first() context = { 'usern': user.id, 'username': user.username, 'fankui':user.fankui, 'comment':user.comment } if tag =='1': return render_template('usercenter1.html',**context) elif tag == '2': return render_template('usercenter2.html', **context) else: return render_template('usercenter3.html', **context)

       

    5. {% extends'danghangye.html' %}{% block title %}个人中心{% endblock %}{% block head %}{% endblock %}{% block main %}    
      {% block usercenter %}{% endblock %}{% endblock %}
                              {% block head %}{% endblock %}            
      {% block title %}{% endblock %}首页
      {% block main %}

      {

      {username}}请登录

      {% for foo in fankui %}
    6. {
      {foo.author.username}}评论({
      {foo.comment|length}})
      {
      {foo.biaoti}}
      {
      {foo.creat_time}}

      {

      {foo.questionDetail}}

    7. {% endfor %}
      {% endblock %}

       

转载于:https://www.cnblogs.com/cyj5201314/p/8041485.html

你可能感兴趣的文章
RHEL6入门系列之二十六,利用rpm进行软件包管理
查看>>
base64 源码
查看>>
编译内核的两种方法
查看>>
log4j.property配置
查看>>
C语言实现在屏幕上输出杨辉三角
查看>>
猜数字小游戏
查看>>
第三节 了解指针链表后的尝试 150206118
查看>>
状态栏的进度条_JS特效代码
查看>>
从根域到客户机,智能的DNS
查看>>
2K&4K高清播放时代的主流
查看>>
实现第三方模块echo使用
查看>>
MySQL-Proxy读写分流
查看>>
Python 高阶函数
查看>>
Citrix xenserver 安装使用
查看>>
ovirt官方安装文档 附录D
查看>>
阿里云云服务器硬盘分区及挂载
查看>>
samba服务
查看>>
PHP魔术法__set和__get
查看>>
逻辑卷管理器(LVM)
查看>>
一个小代码,欢迎大佬的意见,求指正
查看>>